home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Inno Setup 5.2.3 / isetup-5.2.3.exe / {app} / Examples / 64Bit.iss (.txt) next >
Encoding:
Inno Setup Script  |  2006-10-03  |  1.2 KB  |  29 lines

  1. ; -- 64Bit.iss --
  2. ; Demonstrates installation of a program built for the x64 (a.k.a. AMD64)
  3. ; architecture.
  4. ; To successfully run this installation and the program it installs,
  5. ; you must have the "x64" edition of Windows XP or Windows Server 2003.
  6. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  7. [Setup]
  8. AppName=My Program
  9. AppVerName=My Program version 1.5
  10. DefaultDirName={pf}\My Program
  11. DefaultGroupName=My Program
  12. UninstallDisplayIcon={app}\MyProg.exe
  13. Compression=lzma
  14. SolidCompression=yes
  15. OutputDir=userdocs:Inno Setup Examples Output
  16. ; "ArchitecturesAllowed=x64" specifies that Setup cannot run on
  17. ; anything but x64.
  18. ArchitecturesAllowed=x64
  19. ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
  20. ; done in "64-bit mode" on x64, meaning it should use the native
  21. ; 64-bit Program Files directory and the 64-bit view of the registry.
  22. ArchitecturesInstallIn64BitMode=x64
  23. [Files]
  24. Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"
  25. Source: "MyProg.chm"; DestDir: "{app}"
  26. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  27. [Icons]
  28. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  29.